home *** CD-ROM | disk | FTP | other *** search
- <?php
- /**
- * Web based SQLite management
- * @package SQLiteManager
- * @author FrΘdΘric HENNINOT
- * @version $Id: index.php,v 1.11 2004/09/05 17:50:40 freddy78 Exp $ $Revision: 1.11 $
- */
- session_start();
- include_once "./include/defined.inc.php";
- include_once INCLUDE_LIB.'config.inc.php';
- sqlite_close($db);
- ?>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
- <html>
- <head>
- <meta http-equiv="Pragma" content="no-cache">
- <meta http-equiv="expires" content="0">
- <title>SQLiteManager</title>
- <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" >
- </head>
- <frameset cols="<?php echo $leftFrameWidth ?>,*">
- <frame src="left.php?<?php echo arrayToGet($_GET) ?>" name=left scrolling=auto>
- <frame src="main.php?<?php echo arrayToGet($_GET) ?>" name=main scrolling=auto>
- </frameset>
- <noframes>
- <script>if(!document.frames) window.location='main.php?noframe';</script>
- </noframes>
- </html>
-